home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / OptionsDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  2.2 KB  |  92 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8. #include "FavOrg.h"
  9. #include "FavOrgHlp.h"
  10. #include "OptionsDlg.h"
  11.  
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17.  
  18. char const g_szBrowseTitle[] = "Select a FavIcon folder\n(";
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // COptionsDlg dialog
  22.  
  23.  
  24. COptionsDlg::COptionsDlg(CWnd* pParent /*=NULL*/)
  25.     : CDialog(COptionsDlg::IDD, pParent)
  26. {
  27.     //{{AFX_DATA_INIT(COptionsDlg)
  28.     m_nTimeout = 0;
  29.     m_bNoConnectiontest = FALSE;
  30.     //}}AFX_DATA_INIT
  31. }
  32.  
  33.  
  34. void COptionsDlg::DoDataExchange(CDataExchange* pDX)
  35. {
  36.     CDialog::DoDataExchange(pDX);
  37.     //{{AFX_DATA_MAP(COptionsDlg)
  38.     DDX_Text(pDX, IDC_EDTIMEOUT, m_nTimeout);
  39.     DDV_MinMaxUInt(pDX, m_nTimeout, 1, 60);
  40.     DDX_Check(pDX, IDC_NOCONNECTIONTEST, m_bNoConnectiontest);
  41.     //}}AFX_DATA_MAP
  42. }
  43.  
  44.  
  45. BEGIN_MESSAGE_MAP(COptionsDlg, CDialog)
  46.     //{{AFX_MSG_MAP(COptionsDlg)
  47.     ON_BN_CLICKED(IDC_SELFOLDER, OnSelFolder)
  48.     ON_BN_CLICKED(IDHELP, OnHelp)
  49.     //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // COptionsDlg message handlers
  54.  
  55. void COptionsDlg::OnSelFolder() 
  56. {
  57.     // Select folder where icons are stored
  58.     BROWSEINFO bi;
  59.     
  60.     ZeroMemory(&bi, sizeof(BROWSEINFO));
  61.     bi.hwndOwner = m_hWnd;
  62.     bi.ulFlags = BIF_RETURNONLYFSDIRS;
  63.  
  64.     char szTitle[MAX_PATH + 50];
  65.     strcpy(szTitle, g_szBrowseTitle);
  66.     strcat(strcat(szTitle, m_sStorePath), ")");
  67.  
  68.     bi.lpszTitle = szTitle;
  69.  
  70.     LPITEMIDLIST pidl = SHBrowseForFolder(&bi);
  71.     if (pidl)
  72.     {
  73.         SHGetPathFromIDList(pidl, m_sStorePath.GetBuffer(MAX_PATH));
  74.         m_sStorePath.ReleaseBuffer();
  75.     }
  76. }
  77.  
  78. BOOL COptionsDlg::OnInitDialog() 
  79. {
  80.     CDialog::OnInitDialog();
  81.     
  82.     GetDlgItem(IDC_SELFOLDER)->EnableWindow(m_bCanSetFolder);
  83.     
  84.     return TRUE;  // return TRUE unless you set the focus to a control
  85.                   // EXCEPTION: OCX Property Pages should return FALSE
  86. }
  87.  
  88. void COptionsDlg::OnHelp() 
  89. {
  90.     AfxGetApp()->WinHelp(HIDD_OPTIONS);
  91. }
  92.